home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib8 / v_10_05 / 1005076b < prev    next >
Encoding:
Text File  |  1995-11-01  |  214 b   |  13 lines

  1. /*
  2.  *    Listing 8 - local malloc header
  3.  */
  4.  
  5.  
  6. #ifndef    MY_MALLOC
  7. #define    MY_MALLOC
  8.  
  9. #define    malloc(s)    loc_malloc(s,__FILE__,__LINE__)
  10. #define    free(p)        loc_free(p,__FILE__,__LINE__)
  11.  
  12. #endif    /* MY_MALLOC */
  13.